Add Cmd+Shift+Enter to insert a node before the current one#304
Open
johannesmutter wants to merge 2 commits into
Open
Add Cmd+Shift+Enter to insert a node before the current one#304johannesmutter wants to merge 2 commits into
johannesmutter wants to merge 2 commits into
Conversation
Mirrors Enter (which inserts a new default node after the current node) but places the new node before it. Only triggers on text selections, where "the current node" is well defined. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
In a node gap, "the current node" is the node above the caret. Insert at offset - 1 (before that node). No-op when the caret is at offset 0 since there is no node above to insert before. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Cmd/Ctrl + Shift + Entershortcut that behaves likeEnter, but inserts the new node before the current node instead of after.insert_default_node_beforeand commandInsertDefaultNodeBeforeCommandare added alongside the existinginsert_default_node/InsertDefaultNodeCommand.Enter's fallback structure).Test plan
Cmd+Shift+Enter(orCtrl+Shift+Enteron non-mac); a new empty default node appears before the current node, with the caret in the new node.Enter).EnterandShift+Entercontinue to behave as before.🤖 Generated with Claude Code